home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / extra_2 / pslc100.zip / LF2CRLF.POM < prev    next >
Text File  |  1995-11-07  |  3KB  |  82 lines

  1. ;
  2. ;            -----------------------------------------------------
  3. ;            LF2CRLF - CONVERT LF-TERMINATED FILES TO CR/LF FORMAT
  4. ;            -----------------------------------------------------
  5. ;
  6. ;   This Parse-O-Matic script reads LF-terminated text files (such as the ones
  7. ;   created by Xenix and Unix systems) and changes them to CR/LF files (the
  8. ;   "generic text" files used in MS-DOS and other operating systems).
  9. ;
  10. ;   LF-terminated means that each line of text ends in a LineFeed character
  11. ;   (ASCII 10).  On the other hand, each line of a CR/LF file ends with
  12. ;   Carriage-Return and LineFeed (ASCII 13 and ASCII 10, respectively).
  13. ;
  14. ;
  15. ;                    ------------------------------------
  16. ;                    HOW TO INSTALL AND USE THIS POM FILE
  17. ;                    ------------------------------------
  18. ;
  19. ;   1.  Obtain a copy of the shareware program Parse-O-Matic from one of the
  20. ;       following sites:
  21. ;
  22. ;       CompuServe -------- PCUTIL/File Utilities, file name PAR.ZIP
  23. ;       World Wide Web ---- http://www.cam.org/~pinnacl
  24. ;       Free Files BBS ---- +1-514-345-8654 (2400 bps or faster)
  25. ;
  26. ;       Parse-O-Matic is a generic data tool that runs under DOS, Windows
  27. ;       (including Win95) or OS/2.
  28. ;
  29. ;   2.  Install Parse-O-Matic and place it in your DOS PATH.  (For details
  30. ;       about the PATH command, see your DOS manual.)
  31. ;
  32. ;   3.  Place this POM file in a convenient directory:
  33. ;
  34. ;       - The same directory as the data you want to convert, or ...
  35. ;       - A directory in your DOS PATH
  36. ;
  37. ;   4.  At the DOS prompt, enter the command using the following format:
  38. ;
  39. ;       POM LF2CRLF <input-file> <output-file>
  40. ;
  41. ;       For example:
  42. ;
  43. ;       POM LF2CRLF C:\INFILES\XYZ.ABC C:\OUTFILES\OUTPUT.TXT
  44. ;
  45. ;       This will read the file XYZ.ABC and place the output in OUTPUT.TXT
  46. ;
  47. ;
  48. ;                              ------------------
  49. ;                              SAMPLE APPLICATION
  50. ;                              ------------------
  51. ;
  52. ;   A sample run of this program is included in the batch file LF2CRLF.BAT.
  53. ;   To run it, makes sure that Parse-O-Matic has been installed (as explained
  54. ;   earlier), then enter LF2CRLF at the DOS prompt.  This will read the input
  55. ;   file LF2CRLF.INP and generate the output file LF2CRLF.OUT.  You can then
  56. ;   view the output file with a file viewer (such as Pinnacle Software's SEE
  57. ;   utility), or by loading it into a generic text editor.
  58. ;
  59. ;
  60. ;                                 ------------
  61. ;                                 DISTRIBUTION
  62. ;                                 ------------
  63. ;
  64. ;   This POM file is Copyright (C) 1995 by Pinnacle Software (Montreal).  It
  65. ;   is freeware, which means that you can distribute complete and unaltered
  66. ;   copies without royalties.
  67. ;
  68. ;
  69. ;                               -----------------
  70. ;                               TECHNICAL SUPPORT
  71. ;                               -----------------
  72. ;
  73. ;   If you have any questions about Parse-O-Matic or any of our other products,
  74. ;   please send email to pinnacl@cam.org, or phone us at +1-514-345-9578.
  75. ;
  76. ;
  77. ;------------------------------------------------------------------------------
  78. ;
  79. CHOP     1 100
  80. CHANGE   $FLINE #10 #13#10
  81. OUT      |{$FLINE}
  82.